home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 September
/
PCWorld_2008-09_cd.bin
/
domacnost a kancelar
/
joomla
/
Joomla_1.5.4-Stable-Full_Package.exe
/
libraries
/
openid
/
consumer.php
< prev
next >
Wrap
PHP Script
|
2008-07-06
|
349b
|
16 lines
<?php
$path_extra = dirname(__FILE__);
$path = ini_get('include_path');
$path = $path_extra;
ini_set('include_path', $path);
/**
* Require the OpenID consumer code.
*/
require_once "Auth/OpenID/Consumer.php";
/**
* Require the "file store" module, which we'll need to store OpenID
* information.
*/
require_once "Auth/OpenID/FileStore.php";
?>